home *** CD-ROM | disk | FTP | other *** search
/ Blip-Verts 4 / Blip-Verts - Issue 4 (1992-01)(Decay).adf / HdInstall < prev   
AmigaDOS Script File  |  1992-01-08  |  2KB  |  53 lines

  1. .key BV,param2
  2. .bra {
  3. .ket }
  4.  
  5. if "{BV}" eq ""
  6.    echo "  Please enter you hard disk after script name. eg X hdinstall dh0:"
  7.    skip cancel
  8. endif
  9.  
  10. if not "{param2}" eq ""
  11.    echo "Path names with spaces must be enclosed in double quotes."
  12.    skip cancel
  13. endif
  14.  
  15. echo "*Ec "
  16. echo "                BLIP-VERTS #4 HARD DISK INSTALLATION SCRIPT"
  17. echo "           This script will copy BLIP-VERTS to your hard drive."
  18. echo "A new directory will be created called 'BV4' on the Volume you have specified"
  19. echo " "
  20. Ask "Are you sure you want to install Blip-Verts #4 on your hard???(Y or N) :"
  21.    if not warn
  22.         echo "Ok, Installation cancelled (WIMP!!)"
  23.         skip cancel
  24.    endif
  25.  
  26. echo "Installing Blip-Verts and associated files to *"{BV}BV4*"."
  27.  
  28. echo "Creating 'BV4' directory to place the mag!..."
  29.    makedir {BV}BV4
  30.    makedir {BV}BV4/ARTICLE
  31. echo " "
  32. echo "Copying the files now, hold on a tic..."
  33. copy BlipVerts_#4:BLIPVERTS4 {BV}bv4
  34. copy BlipVerts_#4:BLIPVERTS4.info {BV}bv4
  35. copy BlipVerts_#4:article/#? {BV}bv4/article
  36. copy BlipVerts_#4:s/BV4.info {BV}
  37. echo " "
  38. echo " "
  39. echo " "
  40. echo " "
  41. echo "                     Blip-Verts installation finished."
  42.  
  43. echo " "
  44. echo "  Okay, all done.  To run Blip-Verts 4 just CD to the 'BV4' dir and type"
  45. echo "BLIPVERTS4 to run. or if you're a Workbench user, double click on the BV4"
  46. echo "           drawer and then double click on the BLIPVERTS4 icon."
  47. echo " "
  48. echo "               [> Installation Script by Wiz of Oz/Decay <]"
  49. echo "                          ©1992 Decay Productions"
  50.  
  51. lab cancel
  52.  
  53.